home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _ECEBE44821A74C92ADA381DBEE6C9414 < prev    next >
Encoding:
Text File  |  2006-08-04  |  726 b   |  30 lines

  1. from PSPApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': u'Corel Corporation',
  6.         'Copyright': u'Copyright (c) 2003-2004 Corel Corporation  All rights reserved.',
  7.         'Description': u'',
  8.         'Host': u'Paint Shop Pro',
  9.         'Host Version': u'8.10'
  10.         }
  11.  
  12. def Preset_InnerBevel():
  13.     return {
  14.         'Ambience': 0, 
  15.         'Angle': 225, 
  16.         'Bevel': 7, 
  17.         'Color': (73,145,73), 
  18.         'Depth': 70, 
  19.         'Elevation': 40, 
  20.         'Intensity': 40, 
  21.         'Shininess': 10, 
  22.         'Smoothness': 10, 
  23.         'Width': 20
  24.         }
  25.  
  26. def Do(Environment):
  27.     # Inner Bevel
  28.     App.Do( Environment, 'InnerBevel',         Preset_InnerBevel())
  29.  
  30.